home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Software of the Month Club 2000 October
/
Software of the Month - Ultimate Collection Shareware 277.iso
/
pc
/
PROGRAMS
/
UTILITY
/
WINLINUX
/
DATA1.CAB
/
programs_-_include
/
LINUX
/
SMP_LOCK.H
< prev
next >
Wrap
C/C++ Source or Header
|
1999-09-17
|
326b
|
18 lines
#ifndef __LINUX_SMPLOCK_H
#define __LINUX_SMPLOCK_H
#ifndef __SMP__
#define lock_kernel() do { } while(0)
#define unlock_kernel() do { } while(0)
#define release_kernel_lock(task, cpu) do { } while(0)
#define reacquire_kernel_lock(task) do { } while(0)
#else
#include <asm/smplock.h>
#endif /* __SMP__ */
#endif